home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 002 / alltext.arc / PNP.TXT < prev    next >
Text File  |  1987-07-19  |  8KB  |  230 lines

  1.                              Peeks 'n Pokes
  2.  
  3.           Techniques for Getting More Out of the IBM PC Family
  4.  
  5.  
  6.                               Published by
  7.                
  8.                     MicroHelp, Inc.
  9.                 2220 Carlyle Dr.
  10.                   Marietta GA 30062-5841
  11.               (404) 973-9272  (800) 922-3383
  12.                
  13.  
  14. Peeks 'n Pokes is a collection of programs and techniques showing programmers
  15. how to "get underneath the covers" of IBM and compatible personal computers.
  16. This includes the PC, XT, AT, PS/2 and 386 machines.
  17.  
  18. Included is a routine that lets you "plug" characters into the keyboard. This
  19. is great for running DOS commands, other programs and batch files when your
  20. program exits to DOS.
  21.  
  22. In addition, this package includes "unprotection" for BASIC programs saved
  23. with the "P" option - both IBM and GW-BASIC. 
  24.  
  25. The manual and accompanying diskette contain instructions and sample programs
  26. for letting you read and change the system configuration "on the fly".
  27.  
  28. While the majority of the programs are written with the BASIC programmer in
  29. mind, the techniques learned can be applied to any programming languauge.
  30. Routines are provided to the MS Pascal programmer that emulate much needed
  31. BASIC functions.
  32.  
  33. A descriptions of the included programs appears after the following 
  34. summary of the manual:
  35.  
  36. Section 1 - Definition of Terms
  37. -------------------------------
  38.  
  39.   Defines bytes, bits, binary numbers, hexadecimal numbering, PEEK, POKE,
  40.   DEF SEG, BSAVE, BLOAD, Port, INP, OUT, logical operators (OR, AND, XOR),
  41.   registers, DOS and BIOS functions and Interrupts.
  42.   
  43.   The most important part of this section teaches you how to read and change
  44.   the bits within a byte - the most fundamental part of computer programming.
  45.   
  46. Section 2 - Getting Started
  47. ---------------------------
  48.  
  49.   How to use the programs and a listing of all programs.
  50.   
  51. Section 3 - The System Configuration
  52. ------------------------------------
  53.     
  54.   Read the quipment flag. Determine the monitor, memory, number of printers,
  55.   number of game adapters and COM ports.
  56.   
  57.   Read the CMOS chip on AT and later machines. Get the date and time, 
  58.   number and type of diskette and disk drives, total memory, etc.
  59.   
  60. Section 4 - Unprotecting BASIC Programs
  61. ---------------------------------------
  62.  
  63.   Guaranteed to work with all versions of Microsoft and IBM interpreted BASIC.
  64.   
  65. Section 5 - The Keyboard
  66. ------------------------
  67.  
  68.   Read and change the keyboard state with PEEK's and POKE's. Includes 
  69.   instructions for turning off the various shift states of the keyboard.
  70.   
  71.   Memory-resident program that disables Ctrl-C and Ctrl-Break.
  72.   
  73.   Shows you how to "plug" keystrokes into the keyboard.
  74.   
  75. Section 6 - The Video Monitor
  76. -----------------------------
  77.  
  78.   Turn your monitors on and off, swap monitors, turn blinking on and off,
  79.   read the cursor size and location, etc.
  80.   
  81. Section 7 - Disks
  82. -----------------
  83.  
  84.   Read the current diskette status, how many diskettes in the system,
  85.   number of bytes per sector, amount of free disk space, etc.
  86.   
  87. Section 8 - Parallel Printer
  88. ----------------------------
  89.  
  90.   Read the number of printers, printer status, swap printers (i.e., use
  91.   more than one printer as LPT1), etc.
  92.   
  93.   PEEK at the printer status BEFORE printing - avoid printer timeouts.
  94.   
  95. Section 9 - Communications
  96. --------------------------
  97.  
  98.   Read the number of ports, port status, swap COM ports (i.e., use more
  99.   than one COM port as COM1), etc.
  100.   
  101. Section 10 - DOS and BIOS functions
  102. -----------------------------------
  103.  
  104.   Perform DOS and BIOS function calls from compiled or interpreted BASIC.
  105.   
  106. Section 11 - Reading the disk directory
  107. ---------------------------------------
  108.  
  109.   Find filenames and extensions, file size, file date and time, attributes,
  110.   etc. from compiled and interpreted BASIC.
  111.   
  112. Section 12 - Interpretive BASIC
  113. -------------------------------
  114.  
  115.   Important PEEK locations for IBM interpreted BASIC.
  116.   
  117. Section 13 - Generating Sound
  118. -----------------------------
  119.  
  120.   Shows you how to generate weird and wonderful sounds on your computer.
  121.   
  122. Section 14 - Miscellaneous
  123. --------------------------
  124.  
  125.   Clicking the speaker, reading the system time to within 1/18th of a 
  126.   second. Calculate the date x days from today. Inter-program data storage
  127.   locations.
  128.   
  129. Section 15 - Finding More PEEK's and POKE's
  130. -------------------------------------------
  131.  
  132.   How to find other important memory locations, comparing two files,
  133.   calculating the needed AND, OR and XOR arguments to isolate, clear,
  134.   set and toggle the bits within a byte.
  135.   
  136. Section 16 - MS Pascal
  137. ------------------------------------
  138.  
  139.   Pascal programs enabling DOS and BIOS function calls, emulating
  140.   INP, OUT, PEEK and POKE.
  141.           
  142. Appendix A - PEEK and POKE Summary
  143. ----------------------------------
  144.  
  145.   A quick reference of important memory locations and their meanings.
  146.   
  147. Programs included:
  148.  
  149.   MENU.BAS - BASIC menu program used to access the interpretive BASIC
  150.              programs on the diskette.
  151.          
  152.   CONFIG.BAS - Read the system configuration.
  153.   
  154.   KEYREAD.BAS - Read the keyboard status.
  155.   
  156.   KEYSET.BAS - Set and clear the keyboard.
  157.   
  158.   KEYPLUG.BAS - Plug keys into the keyboard buffer as if they had been
  159.                 typed in.
  160.         
  161.   KEYOFF.BAS - Turn the keyboard off and on (not for AT machines)
  162.   
  163.   CRT.BAS - Read the monitor status.
  164.   
  165.   CRTSWAP.BAS - Swap monitors in BASIC.
  166.   
  167.   CRTDEMO.BAS - POKE colors and characters into the video memory, etc.
  168.   
  169.   DISK.BAS - Read the diskette status.
  170.   
  171.   LPT.BAS - Read the parallel printer(s) status.
  172.   
  173.   LPTSWAP.BAS - Use more than one printer as LPT1.
  174.   
  175.   COM.BAS - Read the RS-232 adapter(s) status.
  176.   
  177.   COMSWAP.BAS - Swap adapters - use more than one port as COM1.
  178.   
  179.   DOS2.BAS - DOS and BIOS function calls from interpreted BASIC.
  180.   
  181.   DOS2C.BAS - Compilable short version of DOS2.BAS.
  182.  
  183.   DOS2I.BAS - Short version of DOS2.BAS.
  184.  
  185.   DIRI.BAS - Search the file directory from interpreted BASIC.
  186.   
  187.   DIRC.BAS - Comilable version of DIRI.BAS.
  188.  
  189.   BASIC.BAS - PEEK locations for IBM interpreted BASIC.
  190.   
  191.   MISC.BAS - Miscellaneous PEEK's and POKE's.
  192.   
  193.   BSAVE.BAS - Save memory for COMPARE.BAS.
  194.   
  195.   ARRAY.BAS - Demonstrates BLOAD and BSAVE of an array from BASIC.
  196.   
  197.   COMPARE.BAS - Comparison program for finding more PEEK's and POKE's.
  198.   
  199.   CALC.BAS - PEEK and POKE calculation program.
  200.   
  201.   BLOAD.BAS - Loads a BSAVE'd program into memory.
  202.   
  203.   UNPIBM.COM and UNPALL.COM - BASIC unprotect programs.
  204.   
  205.   UNPSET.BAS - Required for unprotecting non-IBM BASIC programs.
  206.   
  207.   CTLRBRK.ASM and .COM - Disables Ctrl-C anc Ctrl-Break keys.
  208.   
  209.   COLOR.ASM and .COM - Switch from mono to color monitor from DOS.
  210.   
  211.   MONO.ASM and MONO.COM - Switch from color to mono monitor from DOS.
  212.   
  213.   DOSSUB2.ASM and .OBJ - Assembler subroutine used with compiled BASIC
  214.                          programs and DOSP.PAS.
  215.              
  216.   DOSSUB2I.ASM and .OBJ - Assembler subroutine used with DOS2I.BAS.
  217.   
  218.   BEEP.ASM and BEEP.COM - Beep the speaker once from batch files.
  219.   
  220.   SOUNDER.ASM and SOUNDER.COM - Watch how your speaker works.
  221.   
  222.   WAIT.ASM and WAIT.COM - Beep the speaker every five seconds while
  223.                           waiting for a key press.
  224.               
  225.   DOSP.PAS - MS Pascal DOS/BIOS function call example.
  226.   
  227.   INOUT.PAS - Pascal equivalents of INP and OUT.
  228.   
  229.   PEEKPOKE.PAS - Pascal equivalent of PEEK and POKE.
  230.